home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / propdialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-16  |  2.0 KB  |  64 lines

  1. /******************************************************************/
  2. /*                                                                */
  3. /*                      TurboCAD for Windows                      */
  4. /*                   Copyright (c) 1993 - 2001                    */
  5. /*             International Microcomputer Software, Inc.         */
  6. /*                            (IMSI)                              */
  7. /*                      All rights reserved.                      */
  8. /*                                                                */
  9. /******************************************************************/
  10.  
  11. #if !defined(AFX_PROPDIALOG_H__430FB7B3_A088_11D1_B79F_000021452DB6__INCLUDED_)
  12. #define AFX_PROPDIALOG_H__430FB7B3_A088_11D1_B79F_000021452DB6__INCLUDED_
  13.  
  14. #if _MSC_VER >= 1000
  15. #pragma once
  16. #endif // _MSC_VER >= 1000
  17. // PropDialog.h : header file
  18. //
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CPropDialog dialog
  22.  
  23. class CPropDialog : public CDialog
  24. {
  25. // Construction
  26. public:
  27.     CPropDialog(Properties *pProps, CWnd* pParent = NULL);   // standard constructor
  28.     Properties *m_pProps;
  29.  
  30. // Dialog Data
  31.     //{{AFX_DATA(CPropDialog)
  32.     enum { IDD = IDD_PROPERTY };
  33.     //}}AFX_DATA
  34.  
  35.  
  36. // Overrides
  37.     // ClassWizard generated virtual function overrides
  38.     //{{AFX_VIRTUAL(CPropDialog)
  39.     public:
  40.     virtual BOOL DestroyWindow();
  41.     protected:
  42.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  43.     //}}AFX_VIRTUAL
  44.  
  45. // Implementation
  46.     CPtrArray m_arrVal;
  47. protected:
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(CPropDialog)
  51.     virtual BOOL OnInitDialog();
  52.     afx_msg void OnModify();
  53.     virtual void OnCancel();
  54.     virtual void OnOK();
  55.     afx_msg void OnAdd();
  56.     //}}AFX_MSG
  57.     DECLARE_MESSAGE_MAP()
  58. };
  59.  
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  62.  
  63. #endif // !defined(AFX_PROPDIALOG_H__430FB7B3_A088_11D1_B79F_000021452DB6__INCLUDED_)
  64.